home *** CD-ROM | disk | FTP | other *** search
/ Enciclopedia Del Perro / Enciclopedia Del Perro.iso / info31 / ftpcom.in_ / ftpcom.in
Text File  |  1995-07-31  |  4KB  |  156 lines

  1. ; INF
  2. ;
  3. ; FTP Software COM Port driver
  4. ;
  5. ; Copyright 1995, FTP Software, Inc
  6. ;
  7. ; rev 1
  8. ; jlm - replaced *PNP8387 with %FTP_DEVICE%
  9. ; rev 2
  10. ; cmn - jlm called Microsoft. 6/14/95 They informed us to remove sections pertaining
  11. ; to file copying and removal.  I will comment out these sections, instead.
  12. ; Remove flow will be kept, so we can attempt to pull wcomapi.dll from system.ini.
  13. ; as of 6/14/95, we cannot do this, and the ability to do so is under investigation.
  14. ;
  15.  
  16. [version]      
  17. signature="$CHICAGO$"
  18. Class=Net
  19. provider=%V_FTP%
  20.  
  21. [Manufacturer]
  22. %V_FTP%=FTPCOM
  23.  
  24. [FTPCOM]
  25. %FTP_DEVICE.DeviceDesc%=FTPCOM.ndi,   FTPCOM    ; FTP Serial driver
  26.  
  27. ;****************************************************************************
  28. ;   FTP Software Serial Transport Driver
  29. ;****************************************************************************
  30.  
  31.  
  32. [FTPCOM.ndi]
  33. AddReg=FTPCOM.ndi.reg
  34. DeviceID=%FTP_DEVICE%
  35. MaxInstance=1
  36.  
  37. [FTPCOM.ndi.reg]
  38. HKR,Ndi,DeviceID,,"%FTP_DEVICE%"
  39.  
  40. HKR,Ndi,StaticVxd,,"WCOMVXD.386"
  41.  
  42. HKR,Ndi,CardType,,"FORCEENUM"
  43.  
  44. ; FTP SERIAL Info
  45. HKR,FTPCOM,LogDriverName,,"FTPCOM"
  46.  
  47. ; Interfaces
  48. HKR,Ndi\Interfaces,DefUpper,,"ftpcom"
  49. HKR,Ndi\Interfaces,DefLower,,"vcomm"
  50. HKR,Ndi\Interfaces,UpperRange,,"ftpcom"
  51. HKR,Ndi\Interfaces,LowerRange,,"vcomm"
  52.  
  53. ; cmn 6/13/95 -- leave line here for documentation.  Don't depend on anything,
  54. ; we may want to install in independent order.
  55.  
  56. ;HKR,Ndi\Compatibility,RequireAny,,"pctcpapi"
  57.  
  58. ; Install sections
  59. HKR,Ndi\Install,,,"FTPCOM.Install"
  60.  
  61. ; We still want to remove wcomapi.dll from system.ini, so keep remove flow.
  62. HKR,Ndi\Remove,,,"FTPCOM.Remove"
  63.  
  64. ; Context help
  65. HKR,Ndi,HelpText,,%FTPCOM_HELP%
  66.  
  67. [FTPCOM.Install]
  68. AddReg=FTPCOM.AddReg
  69. UpdateIniFields=FTPCOM.SysIniFields.Add
  70.  
  71. ; Refer to comments at head of file.  This is removed per Microsoft's instructions.
  72. ; mlk also asked no inf files be copied.
  73. ;CopyFiles=FTPCOM.CopyFiles.sys
  74.  
  75.  
  76. [FTPCOM.Remove]
  77. DelReg=FTPCOM.Rmv.Delreg  
  78.  
  79. ; Refer to comments at head of file.  This is removed per Microsoft's instructions.
  80. ;Delfiles=FTPCOM.CopyFiles.sys
  81.  
  82. UpdateIniFields=FTPCOM.SysIniFields.Remove 
  83.  
  84. [FTPCOM.AddReg]
  85. ; mlk thinks we don't need a loader,because we're static 6/6/95 cmn
  86.  
  87. HKR,,DeviceVxDs,,wcomvxd.386 
  88. HKLM,"SYSTEM\CurrentControlSet\Services\VxD\FTPCOM",StaticVxD,,"WCOMVXD.386"
  89. HKLM,"SYSTEM\CurrentControlSet\Services\VxD\FTPCOM",Start,1,00
  90.  
  91. [FTPCOM.Rmv.DelReg]
  92. HKLM,"SYSTEM\CurrentControlSet\Services\VxD\FTPCOM"
  93.  
  94. ; Files to be copied...
  95. [FTPCOM.CopyFiles.sys]
  96. wcomvxd.386
  97. wcomapi.dll
  98.  
  99. ; Refer to comments at head of file.  This is removed per Microsoft's instructions.
  100. ; Also, on 6/13, mlk told us not to copy inf files.
  101.  
  102. [FTPCOM.CopyFiles.inf]
  103. ftpcom.inf
  104.  
  105. ; System.ini handling
  106.  
  107. [FTPCOM.SysIniFields.Add]
  108. system.ini,Boot,drivers,,wcomapi.dll
  109.  
  110. ; cmn 6/13/95 for now, it does not appear we can remove anything from system.ini...
  111.  
  112. [FTPCOM.SysIniFields.Remove]
  113. system.ini,Boot,drivers,wcomapi.dll
  114.  
  115.  
  116.  
  117. ;****************************************************************************
  118. ; Destination Directories
  119. ;****************************************************************************
  120. [DestinationDirs]
  121. FTPCOM.CopyFiles.sys     = 11    ;LDID_SYS
  122. FTPCOM.CopyFiles.inf     = 17 ; inf directory
  123.  
  124.  
  125. ;****************************************************************************
  126. ; Source Directories
  127. ;****************************************************************************
  128. ;[SourceDisksNames]
  129. 39=%DSK_FTPCOM%,     "", 0001
  130. ;
  131. ;[SourceDisksFiles]
  132. wcomvxd.386=39
  133. wcomapi.dll=39
  134. ftpcom.inf=39
  135.  
  136. ;****************************************************************************
  137. ; Localizable Strings
  138. ;****************************************************************************
  139. [strings]
  140. ; Manufacturers
  141. V_FTP="FTP Software, Inc."
  142. V_CLASSNAME="FTP Software Serial Transport Driver"
  143.  
  144. ; Source Disks
  145. DSK_FTPCOM=               "OnNet Serial (SLIP/PPP) Driver for Windows-95 disk"
  146.  
  147. ; Devices
  148. FTPCOM.DeviceDesc=      "Serial (SLIP/PPP) Driver. FTP Software, Inc."
  149.  
  150. FTP_DEVICE = "FTPCOM"
  151. ; Context help
  152.  
  153. FTPCOM_HELP="The Serial (SLIP/PPP) Driver allows your applications to communicate over a modem."
  154.  
  155. FTP_DEVICE.DeviceDesc="Serial (SLIP/PPP) Driver. FTP Software, Inc."
  156.